home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Controls / Visual Basic Controls.iso / vbcontrol / flapflag / about.frm next >
Text File  |  1997-12-02  |  5KB  |  154 lines

  1. VERSION 5.00
  2. Begin VB.Form AboutDialog 
  3.    BackColor       =   &H00FFFF00&
  4.    BorderStyle     =   3  'Fixed Dialog
  5.    Caption         =   "About..."
  6.    ClientHeight    =   3630
  7.    ClientLeft      =   3555
  8.    ClientTop       =   2415
  9.    ClientWidth     =   4440
  10.    ControlBox      =   0   'False
  11.    LinkTopic       =   "Form1"
  12.    MaxButton       =   0   'False
  13.    MinButton       =   0   'False
  14.    ScaleHeight     =   3630
  15.    ScaleWidth      =   4440
  16.    ShowInTaskbar   =   0   'False
  17.    Begin VB.CommandButton CmdOk 
  18.       Cancel          =   -1  'True
  19.       Caption         =   "OK"
  20.       Default         =   -1  'True
  21.       Height          =   495
  22.       Left            =   1800
  23.       TabIndex        =   0
  24.       Top             =   3000
  25.       Width           =   855
  26.    End
  27.    Begin VB.Image Image1 
  28.       Height          =   420
  29.       Index           =   1
  30.       Left            =   120
  31.       Picture         =   "About.frx":0000
  32.       Top             =   120
  33.       Width           =   420
  34.    End
  35.    Begin VB.Label Label1 
  36.       Alignment       =   2  'Center
  37.       BackStyle       =   0  'Transparent
  38.       Caption         =   "by Rod Stephens"
  39.       BeginProperty Font 
  40.          Name            =   "MS Sans Serif"
  41.          Size            =   8.25
  42.          Charset         =   0
  43.          Weight          =   700
  44.          Underline       =   0   'False
  45.          Italic          =   0   'False
  46.          Strikethrough   =   0   'False
  47.       EndProperty
  48.       Height          =   255
  49.       Index           =   4
  50.       Left            =   0
  51.       TabIndex        =   5
  52.       Top             =   1920
  53.       Width           =   4455
  54.    End
  55.    Begin VB.Image Image1 
  56.       Height          =   1185
  57.       Index           =   0
  58.       Left            =   600
  59.       Picture         =   "About.frx":0752
  60.       Top             =   120
  61.       Width           =   3735
  62.    End
  63.    Begin VB.Label Label1 
  64.       Alignment       =   2  'Center
  65.       BackStyle       =   0  'Transparent
  66.       Caption         =   "A custom ActiveX control from the"
  67.       BeginProperty Font 
  68.          Name            =   "MS Sans Serif"
  69.          Size            =   8.25
  70.          Charset         =   0
  71.          Weight          =   700
  72.          Underline       =   0   'False
  73.          Italic          =   0   'False
  74.          Strikethrough   =   0   'False
  75.       EndProperty
  76.       Height          =   255
  77.       Index           =   3
  78.       Left            =   0
  79.       TabIndex        =   4
  80.       Top             =   1320
  81.       Width           =   4455
  82.    End
  83.    Begin VB.Label Label1 
  84.       Alignment       =   2  'Center
  85.       BackStyle       =   0  'Transparent
  86.       Caption         =   "Custom Controls Library"
  87.       BeginProperty Font 
  88.          Name            =   "MS Sans Serif"
  89.          Size            =   13.5
  90.          Charset         =   0
  91.          Weight          =   700
  92.          Underline       =   0   'False
  93.          Italic          =   0   'False
  94.          Strikethrough   =   0   'False
  95.       EndProperty
  96.       Height          =   375
  97.       Index           =   1
  98.       Left            =   0
  99.       TabIndex        =   3
  100.       Top             =   1560
  101.       Width           =   4455
  102.    End
  103.    Begin VB.Label Label1 
  104.       Alignment       =   2  'Center
  105.       BackStyle       =   0  'Transparent
  106.       Caption         =   "Copyright 1997, John Wiley && Sons, Inc."
  107.       BeginProperty Font 
  108.          Name            =   "MS Sans Serif"
  109.          Size            =   8.25
  110.          Charset         =   0
  111.          Weight          =   700
  112.          Underline       =   0   'False
  113.          Italic          =   0   'False
  114.          Strikethrough   =   0   'False
  115.       EndProperty
  116.       Height          =   255
  117.       Index           =   0
  118.       Left            =   0
  119.       TabIndex        =   2
  120.       Top             =   2400
  121.       Width           =   4455
  122.    End
  123.    Begin VB.Label Label1 
  124.       Alignment       =   2  'Center
  125.       BackStyle       =   0  'Transparent
  126.       Caption         =   "All rights reserved"
  127.       BeginProperty Font 
  128.          Name            =   "MS Sans Serif"
  129.          Size            =   8.25
  130.          Charset         =   0
  131.          Weight          =   700
  132.          Underline       =   0   'False
  133.          Italic          =   0   'False
  134.          Strikethrough   =   0   'False
  135.       EndProperty
  136.       Height          =   255
  137.       Index           =   2
  138.       Left            =   0
  139.       TabIndex        =   1
  140.       Top             =   2640
  141.       Width           =   4455
  142.    End
  143. End
  144. Attribute VB_Name = "AboutDialog"
  145. Attribute VB_GlobalNameSpace = False
  146. Attribute VB_Creatable = False
  147. Attribute VB_PredeclaredId = True
  148. Attribute VB_Exposed = False
  149. Option Explicit
  150.  
  151. Private Sub CmdOk_Click()
  152.     Unload Me
  153. End Sub
  154.